home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Files / Errors / FilePermissionError.h < prev    next >
Text File  |  1997-06-28  |  334b  |  21 lines

  1. // FilePermissionError.h
  2.  
  3. #ifndef FilePermissionError_h
  4. #define FilePermissionError_h
  5.  
  6. #ifndef FileAccessError_h
  7. #include "FileAccessError.h"
  8. #endif
  9.  
  10. class FilePermissionError: public FileAccessError
  11.   {
  12.     public:
  13.         FilePermissionError( OSErr error )
  14.           : FileAccessError( error )
  15.           {}
  16.         
  17.         // Used for afpAccessDenied
  18.   };
  19.  
  20. #endif
  21.